home *** CD-ROM | disk | FTP | other *** search
- >I've got a gcc pre-2.8 snapshot (think it's december 25th) and binutils
-
- BTW, I sent the config.guess patch to the gcc2 people just now. I've appended
- a copy of it below in case anybody else is having trouble with gcc-2.8.0 not
- correctly detecting their system type.
-
- p.
-
- Mon Jan 19 15:30:12 1998 Philip Blundell <pb@nexus.co.uk>
-
- * config.guess: Add support for Linux/ARM.
-
- Index: config.guess
- ===================================================================
- RCS file: /usr/repository/gnu/gcc/config.guess,v
- retrieving revision 1.3
- diff -u -r1.3 config.guess
- --- config.guess 1997/11/17 11:57:41 1.3
- +++ config.guess 1997/12/01 14:17:11
- @@ -493,6 +493,12 @@
- echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
- exit 0 ;;
- *:Linux:*:*)
- + # uname on the ARM produces all sorts of strangeness, and we need to
- + # filter it out.
- + case "$UNAME_MACHINE" in
- + arm* | sa110*) UNAME_MACHINE="arm" ;;
- + esac
- +
- # The BFD linker knows what the default object file format is, so
- # first see if it will tell us.
- ld_help_string=`ld --help 2>&1`
- @@ -506,6 +512,7 @@
- i?86linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" ; exit 0 ;;
- i?86coff) echo "${UNAME_MACHINE}-pc-linux-gnucoff" ; exit 0 ;;
- sparclinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
- + armlinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
- m68klinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
- elf32ppc) echo "powerpc-unknown-linux-gnu" ; exit 0 ;;
- esac
-
-
-